home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 59267 / 59267.xpi / chrome / content / options.xul < prev   
Extensible Markup Language  |  2010-01-25  |  2KB  |  59 lines

  1. <?xml version="1.0"?>
  2.  
  3. <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
  4.  
  5. <!DOCTYPE dialog [
  6.    <!ENTITY % ahtb12entity SYSTEM "chrome://ahtb12/locale/autohidetabbar.dtd">
  7.    %ahtb12entity;
  8.  
  9.    <!ENTITY % htmlDTD PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
  10.    %htmlDTD;
  11.  
  12. ]>
  13.  
  14. <dialog id="ahtb12Option"
  15.       xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  16.       xmlns:html="http://www.w3.org/1999/xhtml"
  17.       title="&ahtb12Opt.title;"
  18.       buttons="accept,cancel"
  19.       ondialogaccept="autoHideTabBar12Options.save()"
  20.       onload="autoHideTabBar12Options.load()"
  21.       >
  22.  
  23.    <script src="chrome://ahtb12/content/options.js" />
  24.  
  25.    <tabbox flex="1">
  26.       <tabs>
  27.          <tab label="&ahtb12Opt.tabOpt;" />
  28.       </tabs>
  29.  
  30.       <tabpanels flex="1">
  31.          <tabpanel id="ahtb12OptTab" flex="1">
  32.             <vbox flex="1">
  33.  
  34.                <vbox>
  35.                   <checkbox id="ahtb12Enabled" label="&ahtb12Opt.isEnabled;" />
  36.                   <checkbox id="ahtb12TabbarAtBottom" label="&ahtb12Opt.isTabbarAtBottom;" />
  37.                </vbox>
  38.  
  39.                <html:br />
  40.                <html:hr />
  41.  
  42.                <vbox flex="1" width="300" align="center">
  43.                   <hbox style="font-size:0.8em">
  44.                      <label class="text-link" href="http://tiptt.blogspot.com/2010/01/firefox-extension-autohide-tabbar.html">&ahtb12Opt.help;</label>
  45.                      <label>|</label>
  46.                      <label class="text-link" href="http://tiptt.blogspot.com/2009/12/support.html">&ahtb12Opt.support;</label>
  47.                      <label>|</label>
  48.                      <label class="text-link" href="http://tiptt.blogspot.com/search/label/Firefox-Extension">&ahtb12Opt.more;</label>
  49.                   </hbox>
  50.                </vbox>
  51.             </vbox>
  52.          </tabpanel>
  53.  
  54.       </tabpanels>
  55.    </tabbox>
  56. </dialog>
  57.  
  58.  
  59.